home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLE
- ; This will use all GIF files on F:\ and it will make all of the
- ; pictures that are greater than or equal to 800x600 come in
- ; EXPANDING. If will make files greater than or equal to 640x480
- ; Fade IN/OUT. If will make the rest of the files come in with the
- ; BLIND effect.
- ;
- ; Slide-Type-Normal Sets NO special effects
- ; Slide-Type-Blind Sets venitian blinds special effect
- ; Slide-Type-Fade Sets fade-in/fade-out special effect
- ; Slide-Type-Expand Sets Expand special effect
- ; Slide-Type-Merge Sets Merging special effect
- ;
- change-path F:\*.gif
- :loop
- if>=800X600 :do800X600
- if>=640X480 :do640X480
- slide-type-Blind
- GOTO :CONT
- :DO800X600
- slide-type-expand
- GOTO :CONT
- :DO640X480
- slide-type-Fade
- GOTO :CONT
- :cont
- loadnext :exit
- goto :loop
- :exit
-